Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

634362 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/82 - Falling Ball Game

style.css cody/swapnilsparsh/30DaysOfJavaScript/82 - Falling Ball Game/style.css
119 Views
0 Comments
* {
padding: 0;
margin: 0;
}
#game {
width: 400px;
height: 500px;
border: 1px solid rgb(28, 121, 67);
index.html cody/swapnilsparsh/30DaysOfJavaScript/82 - Falling Ball Game/index.html
301 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Falling Ball Game</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
script.js cody/swapnilsparsh/30DaysOfJavaScript/82 - Falling Ball Game/script.js
190 Views
0 Comments
var character = document.getElementById("character");
var game = document.getElementById("game");
var interval;
var both = 0;
var counter = 0;
var currentBlocks = [];

function moveLeft() {